home *** CD-ROM | disk | FTP | other *** search
- I haven't test it but I think you can use banks.Say you have a
- bank and you want to change its length.Just reserve a new one with
- the desirable size and copy the contents of the old, to the new
- one.
- Example:
- During runtime you access Bank No #1
-
- bnum=1
- reserve as work bnum,<size>
- .
- .
- .
- reserve as work 999,<new size>
- copy bnum to 999 ' I don't remember the command now (I'm at the
- Univ.
- reserve as work bnum,<new size>
- copy 999 to bnum
-
- Another untested way is poking the addresses BEFORE the Start(n)
- address.See the manual.
-
- P.S. I 'll send you the answer of the second way later...
-
-
-
-